b81b9142d4e28f2f9dec1c9616d971fd1b9546a2,src/test/java/com/google/api/gax/grpc/UnaryCallableTest.java,UnaryCallableTest,bundlingException,#,671
Before Change
BundlingSettings bundlingSettings =
BundlingSettings.newBuilder()
.setDelayThreshold(Duration.standardSeconds(1))
.setElementCountThreshold(2L)
.setBlockingCallCountThreshold((Long) null)
.build();
BundlerFactory<LabeledIntList, List<Integer>> bundlerFactory =
new BundlerFactory<>(SQUARER_BUNDLING_DESC, bundlingSettings);
try {
After Change
BundlingSettings bundlingSettings =
BundlingSettings.newBuilder()
.setDelayThreshold(Duration.standardSeconds(1))
.setElementCountThreshold(2L)
.build();
BundlerFactory<LabeledIntList, List<Integer>> bundlerFactory =
new BundlerFactory<>(SQUARER_BUNDLING_DESC, bundlingSettings);
try {